home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Scheduling / Cassandra / Source / EditEvent.h < prev    next >
Encoding:
Text File  |  1990-10-27  |  1.1 KB  |  40 lines

  1. //
  2. // EditEvent.h
  3. // Copyright (c) 1989, 1990 by Jiro Nakamura 
  4. // All rights reserved
  5. //
  6. // Interface description for EditEvent. Handles the edit window of Cassandra.
  7. // Gets most of its stuff off AddEvent.
  8. //
  9. // RCS Information
  10. // Revision Number->    $Revision: 2.2 $
  11. // Last Revised->    $Date: 90/10/27 17:49:24 $
  12. //
  13.  
  14. #import "AddEvent.h"
  15. #import <time.h>
  16.  
  17. @interface EditEvent:AddEvent
  18. {    
  19.     EFileLink vHere;        // The Event record number we
  20.                     // are currently editing
  21.     struct tm vNow;            // The Event record time we
  22.                     // are currently editing
  23.  
  24.     id    nextForm;        // Set by IB. The rest of the
  25.     id    previousForm;        // UI stuff is in AddEvent
  26.     id    hereForm;
  27. }
  28.  
  29. - open : sender;            // Open the window
  30. - writeEvent:sender;            // Write out the current event
  31. - insertEvent:sender;            // Insert the current event
  32. - readEvent:sender;            // Read in an event
  33. - reinsertEvent:sender;            // Reinsert an event
  34. - murderEvent : sender;            // Reset/Cancel the current event
  35. - deleteEvent:sender;            // Delete the current event
  36. - nextLink : sender;            // Read in the next event
  37. - previousLink : sender ;        // Read in the previous event
  38. @end
  39.  
  40.